home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / gfx / 3d / irit50src.lha / irit5 / circlink / circlink.c next >
Encoding:
C/C++ Source or Header  |  1994-11-17  |  981 b   |  29 lines

  1. /*****************************************************************************
  2. *   A dummy function to force linkage of circularities in libraries.         *
  3. * This module will be linked as an object file and hence always loaded.      *
  4. *****************************************************************************/
  5.  
  6. #include "irit_sm.h"
  7. #include "symb_lib.h"
  8. #include "geomat3d.h"
  9.  
  10. /*****************************************************************************
  11. * Dummy function that is never called. Just force linkage of functions.      *
  12. *****************************************************************************/
  13. void _DummyCircularLinkResolver(void)
  14. {
  15.     PointType Pt;
  16.  
  17.     BspCrvMult(NULL, NULL);
  18.     BzrCrvMult(NULL, NULL);
  19.     BspSrfMult(NULL, NULL);
  20.     BzrSrfMult(NULL, NULL);
  21.  
  22.     BspSrfDeriveRational(NULL, CAGD_CONST_U_DIR);
  23.     BzrSrfDeriveRational(NULL, CAGD_CONST_U_DIR);
  24.  
  25.     SymbSrf2OptPolysCurvatureErrorPrep(NULL);
  26.  
  27.     CGPointFromPointLine(Pt, Pt, Pt, Pt);
  28. }
  29.